Open
Conversation
97d3400 to
56a14c5
Compare
alamb
reviewed
Feb 26, 2026
Contributor
alamb
left a comment
There was a problem hiding this comment.
Thank you @ishanema03
I think this is a non trivial breaking API (as you can see by the number of API changes)
I understand the rationale for trying to make the API easier to use, but I think we need to balance that against the need to avoid breaking downstream users who are already using the APIs
Can someone help me understand if there is some particular bug this is solving?
I think some of the nuance on API change guidelines isn't well documented, so I'll make a PR to update it https://datafusion.apache.org/contributor-guide/api-health.html
Contributor
|
I wrote up some thoughts here |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
From<String>forColumn#17375Rationale for this change
As mentioned in the issue, the From trait implementations for Column were misleading - they invoked Column::from_qualified_name() which parses and lower-cases field names, making conversions like field.name().into() behave unexpectedly. Requiring explicit calls to Column::from_qualified_name() makes the behavior clear and prevents misuse.
What changes are included in this PR?
Are these changes tested?
Yes, all existing tests have been updated and pass with the new API.
Are there any user-facing changes?
Yes, this is a breaking API change: